home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / UNZIP_MA / SOURCE / UNZIP.MAN < prev    next >
Text File  |  1992-03-19  |  4KB  |  133 lines

  1.  
  2.  
  3.  
  4. unzip(1)                 USER COMMANDS                   unzip(1)
  5.  
  6.  
  7.  
  8. NAME
  9.      unzip - list/test/extract from a ZIP archive file
  10.  
  11. SYNOPSIS
  12.      unzip [ -cflptuvxz[ajnoqUV] ] file[.zip] [filespec...]
  13.  
  14. ARGUMENTS
  15.      file[.zip]  Path of the ZIP archive.  The suffix ``.zip'' is
  16.                  applied  if  the  file specified does not exist.
  17.                  Note that self-extracting  ZIP  files  are  sup-
  18.                  ported;  just  specify the ``.exe'' suffix your-
  19.                  self.
  20.  
  21.      [filespec]  An optional list of archive members to  be  pro-
  22.                  cessed.  Expressions may be used to match multi-
  23.                  ple members; be sure to quote  expressions  that
  24.                  contain  characters interpreted by the operating
  25.                  system.  See  DESCRIPTION   (below)   for   more
  26.                  details.
  27.  
  28. OPTIONS
  29.      -c   extract files to stdout/screen (``CRT'')
  30.      -f   freshen existing files (replace if newer); create none
  31.      -l   list archive files (short format)
  32.      -p   extract files to pipe; no informational messages
  33.      -t   test archive files
  34.      -u   update existing files; create new ones if needed
  35.      -v   list archive files (verbose format)
  36.      -x   extract files in archive (default)
  37.      -z   display only the archive comment
  38.  
  39. MODIFIERS
  40.      -a   convert to MS-DOS textfile format (CR LF), Mac format (CR),
  41.             Unix/VMS format (LF), OR from ASCII to EBCDIC, depending on
  42.             your system (only use for TEXT files!)
  43.      -j   junk paths (don't recreate archive's directory structure)
  44.      -n   never overwrite existing files; don't prompt
  45.      -o   OK to overwrite files without prompting
  46.      -q   perform operations quietly (-qq => even quieter)
  47.      -s   [OS/2, MS-DOS] allow spaces in filenames (e.g., "EA DATA. SF")
  48.      -U   leave filenames uppercase if created under MS-DOS, VMS, etc.
  49.      -V   retain (VMS) file version numbers
  50.      -X   [VMS] restore owner/protection info (may require privileges)
  51.  
  52. DESCRIPTION
  53.      unzip will list, test, or extract from a ZIP  archive,  com-
  54.      monly  found on MSDOS systems.  Archive member extraction is
  55.      implied by the absence of the -c,  -p,  -t,  -l,  -v  or  -z
  56.      options.    All  archive  members  are  processed  unless  a
  57.      filespec is provided to specify  a  subset  of  the  archive
  58.      members.   The  filespec  is similar to an egrep expression,
  59.      and may contain:
  60.  
  61.  
  62.  
  63.                            UnZip version 4.2                    1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. unzip(1)                 USER COMMANDS                   unzip(1)
  71.  
  72.  
  73.  
  74.      *       matches a sequence of 0 or more characters
  75.      ?       matches exactly 1 character
  76.      \nnn    matches the character having octal code nnn
  77.      [...]   matches any single character found inside the brack-
  78.              ets;  ranges are specified by a beginning character,
  79.              a hyphen, and an ending character.  If a '!' follows
  80.              the  left  bracket,  then  the  range  of characters
  81.              matched is complemented with respect  to  the  ASCII
  82.              character set.
  83.  
  84. VERSIONS
  85.      v1.2   3/15/89    Samuel H. Smith
  86.      v2.0   9/9/89     Samuel H. Smith
  87.      v2.x   fall 1989  many Usenet contributors
  88.      v3.0   5/1/90     Info-ZIP workgroup (David Kirschbaum, consolidator)
  89.      v3.1   8/15/90    Info-ZIP
  90.      v4.0   12/1/90    Info-ZIP
  91.      v4.1   5/12/91    Info-ZIP
  92.      v4.2   3/20/92    Info-ZIP (zip-bugs subgroup)
  93.      v5.0   ~4/92      Info-ZIP (zip-bugs subgroup) [will have deflation!]
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                            UnZip version 4.2                    2
  130.  
  131.  
  132.  
  133.